* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logoPrincipal {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logoPrincipal img {
    width: 70%;
    max-width: 500px;
}

.video-container-principal {
    width: 100%;
}

video {
    width: 100%;
}

.primeiroESegundoTexto {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    text-align: center;
    font-size: 24px;
    padding: 10px;
    max-width: 600px;
}

h2 {
    text-align: center;
    padding: 10px;
    max-width: 600px;
    font-weight: 100;
}

.divTerceiroTexto {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.terceiroTexto {
    text-align: center;
    margin-bottom: 10px;
    font-size: 17px;
}

h6 {
    font-size: 50px;
    font-weight: 100;
}

h5 {
    font-weight: 100;
}

footer {
    text-align: center;
    padding: 10px;
}

/* Ajustes para o contêiner de vídeo */
.video-container {
    display: flex;
    flex-wrap: wrap;
}

.video {
    cursor: pointer;
    flex: 0 0 50%;
    position: relative;
    padding-top: 28.125%;
    overflow: hidden;
}

.video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
    /* Animação suave de 2 segundos */
}

.video:hover img {
    transform: scale(1.05);
    /* Aumenta a imagem levemente ao passar o mouse */
}

/* Mobile */
@media (max-width: 768px) {
    .video {
        flex: 0 0 100%;
        /* Cada vídeo ocupa 100% da largura no mobile */
        padding-top: 56.25%;
        /* Ajusta para manter 16:9 */
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 95%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
}

.modal iframe {
    border-radius: 7px;
    width: 100%;
    height: 100%;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}


.entrarEmContato {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
}

.formContainer {
    width: 90%;
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.formTitle {
    text-align: center;
}

.formGroup {
    margin-bottom: 15px;
}

.formLabel {
    display: block;
    margin-bottom: 5px;
}

.formInput,
.formTextarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.formTextarea {
    resize: vertical;
    /* Permite redimensionar apenas na vertical */
}

.formButton {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.formButton:hover {
    background-color: #218838;
}